home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Precision Software Appli…tions Silver Collection 1
/
Precision Software Applications Silver Collection Volume One (PSM) (1993).iso
/
tutor
/
dosguide.exe
/
HELPDOS.ZIP
/
CHDIR.HLP
< prev
next >
Wrap
Text File
|
1987-04-05
|
1KB
|
47 lines
----------------------- CHDIR - Internal DOS Command -------------------------
CHDIR changes the current directory or displays the current directory path.
FORMAT: CHDIR [d:][path]
REMARKS:
d: - the drive letter. If omitted the default drive is assumed.
path - the directory path of the directory to be made current. If a path is
not specified, the current path will be displayed.
DOS looks in the current directory to find files specified in a command if
the directory path is not specified in the command.
CHDIR may be abbreviated as CD.
EXAMPLES:
Display the current directory path on the default drive:
CHDIR or CD
Change the current directory on the default drive to the root directory:
CHDIR \ or CD \
Change the current directory on the B drive to the BUDGET directory. BUDGET is
a subdirectory of the root directory:
CHDIR B:\BUDGET
Change the current directory on the default drive to the DATA directory. DATA
is a subdirectory of the BUDGET directory. BUDGET is a subdirectory of the root
directory.
CD \BUDGET\DATA
If the current directory path is \BUDGET and you want to make DATA,
which is a subdirectory of BUDGET, the current directory, you need
specify only the DATA subdirectory:
CD DATA